home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / marker.h < prev    next >
C/C++ Source or Header  |  1994-11-12  |  333b  |  13 lines

  1. // Marker is the geometric figure for drawing the graphs.
  2.  
  3. #ifndef __MARKER_H_
  4. #define __MARKER_H_
  5.  
  6. #include "graphpp.h"
  7.  
  8. enum { NONE, BAR, CIRCLE, TRIANGLE, STAR5, STAR6, CROSS, X_CROSS,
  9.        DIAMOND, TRIANGLE2, BAR2, CIRCLE2 };
  10.  
  11. extern void show_marker(int type, loc pos, int color, int size = 4);
  12.  
  13. #endif __MARKER_H_